home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / unix / sysdep.h < prev    next >
C/C++ Source or Header  |  1993-05-21  |  2KB  |  60 lines

  1. /* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #include <syscall.h>
  20. #define    HAVE_SYSCALLS
  21.  
  22. /* Note that using a `PASTE' macro loses.  */
  23. #ifdef    __STDC__
  24. #define    SYSCALL__(name, args)    PSEUDO (__##name, name, args)
  25. #else
  26. #define    SYSCALL__(name, args)    PSEUDO (__/**/name, name, args)
  27. #endif
  28. #define    SYSCALL(name, args)    PSEUDO (name, name, args)
  29.  
  30. /* Machine-dependent sysdep.h files are expected to define the macro
  31.    PSEUDO (function_name, syscall_name) to emit assembly code to define the
  32.    C-callable function FUNCTION_NAME to do system call SYSCALL_NAME.
  33.    r0 and r1 are the system call outputs.  MOVE(x, y) should be defined as
  34.    an instruction such that "MOVE(r1, r0)" works.  ret should be defined
  35.    as the return instruction.  */
  36.  
  37. /* Define a macro we can use to construct the asm name for a C symbol.  */
  38. #ifdef    NO_UNDERSCORES
  39. #define    C_SYMBOL_NAME(name)    name
  40. #ifdef    __STDC__
  41. #define C_LABEL(name)        name##:
  42. #else
  43. #define C_LABEL(name)        name/**/:
  44. #endif
  45. #else
  46. #ifdef    __STDC__
  47. #define    C_SYMBOL_NAME(name)    _##name
  48. #define C_LABEL(name)        _##name##:
  49. #else
  50. #define    C_SYMBOL_NAME(name)    _/**/name
  51. #define C_LABEL(name)        _/**/name/**/:
  52. #endif
  53. #endif
  54.  
  55. #ifdef __STDC__
  56. #define SYS_ify(syscall_name) SYS_##syscall_name
  57. #else
  58. #define SYS_ify(syscall_name) SYS_/**/syscall_name
  59. #endif
  60.